4d8847e78c998e56e95531842d37920321da9b42,portal-service/src/com/liferay/portal/kernel/portlet/PortletJSONUtil.java,PortletJSONUtil,writeFooterPaths,#HttpServletResponse#JSONObject#,241

Before Change


			HttpServletResponse response, JSONObject jsonObject)
		throws IOException {

		JSONArray footerCssPathsJSONArray = jsonObject.getJSONArray(
			"footerCssPaths");
		JSONArray footerJavaScriptPathsJSONArray = jsonObject.getJSONArray(
			"footerJavaScriptPaths");

		if ((footerCssPathsJSONArray.length() == 0) &&
			(footerJavaScriptPathsJSONArray.length() == 0)) {

			return;

After Change


		throws IOException {

		writePaths(
			response, jsonObject.getJSONArray("footerCssPaths"),
				jsonObject.getJSONArray("footerJavaScriptPaths"));
	}